Solves the eigenvalue problem where matrix is is square, but not necessarily symmetric. Optionally, the left eigenvalue problem can be solved such that .
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| real(kind=real64), | intent(in), | dimension(:,:) | :: | a |
The matrix . |
|
| logical, | intent(in), | optional | :: | right |
An optional parameter specifying if the right eigenvalue solution should be computed (true), or the left eigenvalue solution should be computed (false). The default is true such that the right eigenvalue problem is solved. |
The solution.
Solves the eigenvalue problem where and are both N-by-N matrices. Optionally, the left eigenvalue problem can be solved such that .
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| real(kind=real64), | intent(in), | dimension(:,:) | :: | a |
The matrix . |
|
| real(kind=real64), | intent(in), | dimension(:,:) | :: | b |
The matrix . |
|
| logical, | intent(in), | optional | :: | right |
An optional parameter specifying if the right eigenvalue solution should be computed (true), or the left eigenvalue solution should be computed (false). The default is true such that the right eigenvalue problem is solved. |
The solution.